All Questions
Tagged with aws-lambdaaws-step-functions
536 questions
1vote
1answer
40views
How to create EventBridge rule that triggers Lambda/Step function on another account?
I have two AWS accounts named A and B. I want to create an EventBridge rule on A that will run Lambda/Step function on B, and on runtime I don't have access to B, only to A. The problem with lambda ...
0votes
0answers
20views
Need help in designing solution to read Step function distributed Mode ( map ) result
We have use case where we need to create workflow which takes csv file from user via tool and then read data from file and process records and make some internal api call and return result in another ...
0votes
0answers
50views
How do I get logs for a particular lambda execution using AWS CLI?
Using aws stepfunctions get-execution-history, I can see all the events in a particular execution. It lists, among other things, lambda function executions. How do I get the logs associated with a ...
0votes
1answer
31views
Remove fields from previous step
I am trying to remove a field from the previous step used only in the choice task. I have this StepFunction { "StartAt": "ConversionStep", "States": { "...
1vote
1answer
150views
StepFunction to Lambda to EKS
I have a requirement to run the EKS job to perform certain task. The flow is like this, StepFunction has 3 stages (stage1, stage2, stage3). Each stage has specific task to do and has an docker image ...
0votes
1answer
95views
How to find out step function external IP address
I have a step function that is running in an AWS account that connects into an RDS database in another account. I need to reduce the scope of the RDS security group rule but I can find the external IP ...
1vote
1answer
421views
What is the Typescript type of a AWS Lambda event coming from a Step Function
@types/aws-lambda lists the Event type for 34 different sources, from ALB to SQS, but SFN or StepFunctions is not on the list. I just want to be able to (confidently) write export const hander:Handler&...
1vote
0answers
28views
How to process or save job status details after a successful execution of a Step Function
Here is the rough code. It is written in Python using aws cdk complete_storage_fees_definition = ( step_functions.Parallel(self, "TryHandlerStorageFees", output_path="$.[0]"...
1vote
1answer
51views
How can get my AWS step function and lambdas to run without exceeding rate?
I am trying to run several step functions based on reading records in my sample data and invoking the step function for each piece of data in the sample data pictorially, this is what I am doing... ...
0votes
0answers
56views
AWS Step Functions - How are retries triggered?
I've just started using Step Functions which contains a single call to a Lambda. I have configured the Retry Interval, Exponential Back Off etc for the Lambda. The Lambda a 400 status in response if ...
0votes
0answers
31views
Should I load my derived data back into RDS or into S3 bucket after Lambda step function ETL process? Runtime issues
I am very new to AWS and doing an ETL using AWS lambdas in a step function where I: Extract data from RDS table. Transform the data across several lambdas in a step function, because the runtime is ...
1vote
0answers
130views
How to trigger an Event or AWS Lambda function if all AWS Glue Jobs are executed successfully
I have automated execution of 50 AWS Glue Jobs via AWS Step functions. They all execute concurrently. I would appreciate it, if someone can provide guidance on How can I trigger either an event, aws ...
0votes
1answer
61views
Node20x runtime lambda throws an incorrectly formatted error in AWS Step Functions while Node18x throws an expected error format
AWS lambda running on Node18x runtime throws a different exception when running on Node20x runtime. I have a lambda function used in AWS state machine. The state machine has a retry mechanism for ...
0votes
0answers
68views
AWS StepFunction startExecution adding :UUID to name
I'm trying to set the name of an Express StepFunction execution in a lambda so that the StepFunction prevents any duplicate processing. This code works as expected, except somehow a colon followed by ...
0votes
0answers
41views
AWS Step Functions vs SNS for Full stack Controller-Model(s) Lambda Functions
I'm building a full-stack application using AWS and I'm currently working on my backend services; I have a Controller lambda that will communicate to other Model lambdas such as a CognitoModel, ...